Socket
Socket
Sign inDemoInstall

module-definition

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

module-definition

Determines if a file is using a CommonJS or AMD module definition


Version published
Maintainers
1
Created
Source

module-definition npm npm

Determines the module definition type (CommonJS, AMD, or none) for a given JavaScript file by walking through the AST.

npm install module-definition

Usage

var getModuleType = require('module-definition');

// Async
getModuleType('myscript.js', function (type) {
  console.log(type);
});

// Sync
var type = getModuleType.sync('myscript.js');
console.log(type);

// From source
var type = getModuleType.fromSource('define({foo: "foo"});');
console.log(type);

Or via shell command (requires a global install: npm install -g module-definition)

module-definition filename

Passes one of the following strings to the given callback or returns the string in sync api:

  • amd
  • commonjs
  • none

FAQs

Package last updated on 09 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc